home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / editors / tscredd2 / scrdisk5.exe / arc / SMALLEST.C < prev    next >
Text File  |  1990-04-22  |  340b  |  18 lines

  1. #include <dos.h>
  2. #include "ScrEdit.H"
  3. #include "ScrDemo.003"
  4.  
  5. void main()
  6. {
  7. S_Init();
  8. S_OpenScreenFile("ScrDemo.Scr");
  9. Initialize_Dupe_Fields_buf();
  10. S_LoadScreen("Dupe_Fields");
  11. S_Cursor = S_INVERSENORMAL;
  12. do{
  13.   S_ReadScreen();
  14.   if  (S_Enter) strcpy(S_UserMsg,"PROCESS SCREEN");
  15.   }
  16. while (!S_Esc);
  17. S_CloseScreenFile();
  18. }